function twobullet()

if currentBullet < 10 then
currentBullet = currentBullet + 1
else
currentBullet = 1
end

if Enemytwo.direction == "left" then
BulletInfo2[currentBullet].x = Enemytwo.x 
BulletInfo2[currentBullet].y = Enemytwo.y + 15 
end
if Enemytwo.direction == "right" then
BulletInfo2[currentBullet].x = Enemytwo.x + 20
BulletInfo2[currentBullet].y = Enemytwo.y + 15
end
if Enemytwo.direction == "up" then
BulletInfo2[currentBullet].x = Enemytwo.x + 15
BulletInfo2[currentBullet].y = Enemytwo.y + 10
end
if Enemytwo.direction == "down" then
BulletInfo2[currentBullet].x = Enemytwo.x + 15
BulletInfo2[currentBullet].y = Enemytwo.y + 10
end

BulletInfo2[currentBullet].direction = Enemytwo.direction
BulletInfo2[currentBullet].firing = true

end